home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / WinCub / WinCubNet.dpr < prev   
Encoding:
Text File  |  2004-10-22  |  3.9 KB  |  100 lines

  1. (*=====================================================================
  2.   Project:   WinCubNET.bdsproj
  3.  
  4.   File:      WinCubNET.bdsproj
  5.  
  6.   Summary:
  7.              WinCubNET is a Delphi.NET implementation of the dotNETCub
  8.              project, which is a simple game for your fun.
  9.                    On other hand it could demonstrate creating
  10.                    FCL-objects in run time and using them.
  11.  
  12. ---------------------------------------------------------------------
  13.   This file is submitted by:
  14.  
  15.      endresy@axelero.hu
  16.      Endre I. Simay,
  17.      Hungary
  18.  
  19.  
  20. THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  21. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  22. IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  23. PARTICULAR PURPOSE.
  24. =====================================================================*)
  25.  
  26. program WinCubNet;
  27.  
  28. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  29. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  30. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  31. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  32. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
  33. {$R 'wincubNET_.TWinForm.resources' 'wincubNET_.resx'}
  34.  
  35. uses
  36.   System.Reflection,
  37.   System.Runtime.CompilerServices,
  38.   System.Windows.Forms,
  39.   wincubNET_ in 'wincubNET_.pas' {wincubNET_.TWinForm: System.Windows.Forms.Form};
  40.  
  41. //
  42. // General Information about an assembly is controlled through the following
  43. // set of attributes. Change these attribute values to modify the information
  44. // associated with an assembly.
  45. //
  46. [assembly: AssemblyTitle('')]
  47. [assembly: AssemblyDescription('')]
  48. [assembly: AssemblyConfiguration('')]
  49. [assembly: AssemblyCompany('')]
  50. [assembly: AssemblyProduct('')]
  51. [assembly: AssemblyCopyright('')]
  52. [assembly: AssemblyTrademark('')]
  53. [assembly: AssemblyCulture('')]
  54.  
  55. //
  56. // Version information for an assembly consists of the following four values:
  57. //
  58. //      Major Version
  59. //      Minor Version 
  60. //      Build Number
  61. //      Revision
  62. //
  63. // You can specify all the values or you can default the Revision and Build Numbers 
  64. // by using the '*' as shown below:
  65.  
  66. [assembly: AssemblyVersion('1.0.*')]
  67.  
  68. //
  69. // In order to sign your assembly you must specify a key to use. Refer to the 
  70. // Microsoft .NET Framework documentation for more information on assembly signing.
  71. //
  72. // Use the attributes below to control which key is used for signing. 
  73. //
  74. // Notes: 
  75. //   (*) If no key is specified, the assembly is not signed.
  76. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  77. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  78. //       a key.
  79. //   (*) If the KeyFile and the KeyName values are both specified, the 
  80. //       following processing occurs:
  81. //       (1) If the KeyName can be found in the CSP, that key is used.
  82. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  83. //           in the KeyFile is installed into the CSP and used.
  84. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  85. //       When specifying the KeyFile, the location of the KeyFile should be
  86. //       relative to the project output directory which is
  87. //       %Project Directory%\bin\<configuration>. For example, if your KeyFile is
  88. //       located in the project directory, you would specify the AssemblyKeyFile 
  89. //       attribute as [assembly: AssemblyKeyFile('..\\..\\mykey.snk')]
  90. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  91. //       documentation for more information on this.
  92. //
  93. [assembly: AssemblyDelaySign(false)]
  94. [assembly: AssemblyKeyFile('')]
  95. [assembly: AssemblyKeyName('')]
  96.  
  97. begin
  98.   Application.Run(TWinForm.Create);
  99. end.
  100.